Bi Weekly Analytics Screen Content
fun BiWeeklyAnalyticsScreenContent(modifier: Modifier = Modifier, viewModel: BiWeeklyAnalyticsViewModel = hiltViewModel(), onNavigateToSummaryDialog: (BiWeeklyEvaluationEntry?) -> Unit)
A composable function that displays the Bi-Weekly Analytics screen. It uses TabbedContent
to present different sections such as the mood graph and evaluation history. The content is dynamically updated based on the data from the ViewModel.
Parameters
modifier
The modifier to be applied to the root composable.
view Model
The ViewModel that provides the UI state and manages the bi-weekly evaluations.
on Navigate To Summary Dialog
A lambda function that handles navigation to a summary dialog for each evaluation entry.